home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Setup / BCB / data.z / headmain.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-02-09  |  1.3 KB  |  36 lines

  1. //----------------------------------------------------------------------------
  2. //Borland C++Builder
  3. //Copyright (c) 1987, 1998 Borland International Inc. All Rights Reserved.
  4. //----------------------------------------------------------------------------
  5. //---------------------------------------------------------------------------
  6. #ifndef headmainH
  7. #define headmainH
  8. //---------------------------------------------------------------------------
  9. #include <Classes.hpp>
  10. #include <Controls.hpp>
  11. #include <StdCtrls.hpp>
  12. #include <Forms.hpp>
  13. #include <ComCtrls.hpp>
  14. #include <ExtCtrls.hpp>
  15. //---------------------------------------------------------------------------
  16. class TForm1 : public TForm
  17. {
  18. __published:    // IDE-managed Components 
  19.     THeaderControl *HeaderControl1;
  20.     TShape *Shape1;
  21.     TShape *Shape2;
  22.     TShape *Shape3;
  23.     TLabel *Label1;
  24.     void __fastcall HeaderControl1SectionTrack(
  25.       THeaderControl *HeaderControl, THeaderSection *Section,
  26.       int Width, TSectionTrackState State);
  27.  
  28. private:        // User declarations
  29. public:         // User declarations
  30.     virtual __fastcall TForm1(TComponent* Owner);
  31. };
  32. //---------------------------------------------------------------------------
  33. extern TForm1 *Form1;
  34. //---------------------------------------------------------------------------
  35. #endif
  36.